home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Complementary Applications 2004 February / SGI IRIX 6.5 Complementary Applications 2004 February.iso / dist / cde.idb / usr / dt / share / include / Xm / DialogSEP.h.z / DialogSEP.h
Encoding:
C/C++ Source or Header  |  2003-11-18  |  3.2 KB  |  110 lines

  1. /*
  2.  * DialogSEP.h
  3.  *
  4.  * Copyright 2000, Silicon Graphics, Inc.
  5.  * ALL RIGHTS RESERVED
  6.  * 
  7.  * UNPUBLISHED -- Rights reserved under the copyright laws of the United
  8.  * States.   Use of a copyright notice is precautionary only and does not
  9.  * imply publication or disclosure.
  10.  *
  11.  * U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND:
  12.  * Use, duplication or disclosure by the Government is subject to restrictions
  13.  * as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights
  14.  * in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or
  15.  * in similar or successor clauses in the FAR, or the DOD or NASA FAR
  16.  * Supplement.  Contractor/manufacturer is Silicon Graphics, Inc.,
  17.  * 2011 N. Shoreline Blvd. Mountain View, CA 94039-7311.
  18.  *
  19.  * THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY
  20.  * INFORMATION OF SILICON GRAPHICS, INC. ANY DUPLICATION, MODIFICATION,
  21.  * DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN WHOLE, OR IN PART, IS STRICTLY
  22.  * PROHIBITED WITHOUT THE PRIOR EXPRESS WRITTEN PERMISSION OF SILICON
  23.  * GRAPHICS, INC.
  24.  */
  25. /* 
  26.  * @OSF_COPYRIGHT@
  27.  * (c) Copyright 1990, 1991, 1992, 1993, 1994 OPEN SOFTWARE FOUNDATION, INC.
  28.  * ALL RIGHTS RESERVED
  29.  *  
  30. */ 
  31. /*
  32.  * HISTORY
  33.  * Motif Release 1.2.5
  34. */
  35. /*   $XConsortium: DialogSEP.h /main/cde1_maint/2 1995/08/18 18:56:19 drk $ */
  36. /*
  37. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  38. /*
  39. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  40. /*
  41. *  (c) Copyright 1988 MASSACHUSETTS INSTITUTE OF TECHNOLOGY  */
  42. /*
  43. *  (c) Copyright 1988 MICROSOFT CORPORATION */
  44. #ifndef _XmDialogShellExtP_h
  45. #define _XmDialogShellExtP_h
  46.  
  47. #include <Xm/VendorSEP.h>
  48.  
  49. #ifdef __cplusplus
  50. extern "C" {
  51. #endif
  52.  
  53.  
  54. #ifndef XmIsDialogShellExt
  55. #define XmIsDialogShellExt(w)    XtIsSubclass(w, xmDialogShellExtObjectClass)
  56. #endif /* XmIsDialogShellExt */
  57.  
  58. externalref WidgetClass xmDialogShellExtObjectClass;
  59.  
  60. typedef struct _XmDialogShellExtClassRec    *XmDialogShellExtObjectClass ;
  61. typedef struct _XmDialogShellExtRec        *XmDialogShellExtObject ;
  62.  
  63.  
  64. typedef struct _XmDialogShellExtClassPart{
  65.    XtPointer extension;   /* Pointer to extension record */
  66. }XmDialogShellExtClassPart, *XmDialogShellExtClassPartPtr;
  67.  
  68. typedef struct _XmDialogShellExtClassRec{
  69.     ObjectClassPart        object_class;
  70.     XmExtClassPart        ext_class;
  71.     XmDesktopClassPart        desktop_class;
  72.     XmShellExtClassPart        shell_class;
  73.     XmVendorShellExtClassPart     vendor_class;
  74.     XmDialogShellExtClassPart     dialog_class;
  75. }XmDialogShellExtClassRec;
  76.  
  77. typedef struct _XmDialogShellExtPart{
  78.     int                  empty;
  79. } XmDialogShellExtPart;
  80.  
  81. externalref XmDialogShellExtClassRec     xmDialogShellExtClassRec;
  82.  
  83. typedef struct _XmDialogShellExtRec{
  84.     ObjectPart            object;
  85.     XmExtPart            ext;
  86.     XmDesktopPart        desktop;
  87.     XmShellExtPart        shell;
  88.     XmVendorShellExtPart     vendor;
  89.     XmDialogShellExtPart     dialog;
  90. }XmDialogShellExtRec;
  91.  
  92.  
  93. /********    Private Function Declarations    ********/
  94. #ifdef _NO_PROTO
  95.  
  96.  
  97. #else
  98.  
  99.  
  100. #endif /* _NO_PROTO */
  101. /********    End Private Function Declarations    ********/
  102.  
  103.  
  104. #ifdef __cplusplus
  105. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  106. #endif
  107.  
  108. #endif /* _XmDialogShellExtP_h */
  109. /* DON'T ADD STUFF AFTER THIS #endif */
  110.